home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir37 / 261to262.zip / 261UP262.BAT < prev    next >
DOS Batch File  |  1995-02-15  |  2KB  |  37 lines

  1. echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║        DESQview patch for version 2.61 dated 12/1/93        ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to DESQview version 2.61.   ║
  6. echo ║ This patch will work ONLY on DESQview version 2.61. The     ║
  7. echo ║ date on the DV.EXE file in your DV directory should be      ║
  8. echo ║ 12/1/93. If the date on these files is later than 12/1/93,  ║
  9. echo ║ you do not need this patch.                                 ║
  10. echo ║                                                             ║
  11. echo ║ Press any key to continue or Control-C to abort.            ║
  12. echo ╚═════════════════════════════════════════════════════════════╝
  13. pause
  14. if not exist PATCH.EXE goto error
  15. if not exist 261to262.RTP goto error
  16. if not exist DV.EXE goto error
  17. patch 261to262.rtp /ignoremissing
  18. patch mft.rtp /ignoremissing
  19. echo Patch complete! Now deleting patch files...
  20. del patch.exe
  21. del 261to262.rtp
  22. del mft.rtp
  23. echo Patch successfully applied; patch files deleted.
  24. goto end
  25. :error
  26. echo ╔═════════════════════════════════════════════════════════════╗
  27. echo ║ This patch should be applied by copying PATCH.EXE,          ║
  28. echo ║ 261to262.rtp, mft.rtp, yesno.com and 261up262.bat into      ║
  29. echo ║ your DV directory, and then typing:                         ║
  30. echo ║                                                             ║
  31. echo ║ 261up262                                                    ║
  32. echo ║                                                             ║
  33. echo ║ (If you have DESQview files with another date in your       ║
  34. echo ║  path, you should type: PATH=DV.)                           ║
  35. echo ╚═════════════════════════════════════════════════════════════╝
  36. :end
  37.